home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIPPINGWINDOW_H
- #define CLIPPINGWINDOW_H
-
- class CClippingFile;
- class CThumbnail;
-
- class CClippingWindow {
-
- public:
- CClippingWindow (CClippingFile* theFile);
- ~CClippingWindow ();
-
- void RePositionWindow ();
-
- protected:
- Rect CalculateWindowBounds (Boolean onLeft, short offset);
- static void ClippingDisposeProc (WindowPtr win);
- static void EventProc (EventRecord *theEvent, WindowPtr win);
-
- private:
- WindowPtr fWindow;
- CClippingFile* fClippingFile;
- CThumbnail* fThumbnail;
- };
-
- #endif
-